home *** CD-ROM | disk | FTP | other *** search
/ MIDICraft's MIDINET CD-ROM / MIDICraft's MIDINET CD-ROM.iso / DOCS / M1SYSEX.TXT < prev    next >
Text File  |  1996-09-06  |  2KB  |  61 lines

  1.  
  2.                        Korg M1 SYSEX Implementation
  3.  
  4. Here is the M1's sysex implementation  for ALL, COMBOS,  GLOBALS, and SEQS.
  5. This is for INTERNAL banks only, not stuff  stored externally on RAM cards.
  6. Everything is in hex, unless  noted.   "n"  is  MIDI  channel #, and "*" is
  7. where MIDI data begins.
  8.  
  9.      Voice bulk data info is in parentheses, where:
  10.                (HHHH) = header offset
  11.                (HHHH) = voice name position
  12.                (HHHH) = # of bytes in one voice
  13.                (HHHH) = checksum byte position
  14.                (HHHH) = # of voices in bank
  15.                (HHHH) = bank header offset
  16.                (HHHH) = # of banks in dump
  17.                   HH  = voice name length
  18.                   HH  = bit field 1
  19.                   HH  = bit field 2
  20.  
  21. ALL:
  22.  
  23.      ALL dump request:  F0, 42, 3n, 19, 0F, 00, F7
  24.  
  25.      Response from M1:  F0, 42, 3n, 19, 50, *, F7
  26.  
  27.  
  28. COMBO:
  29.  
  30.      COMBO dump request:  F0, 42, 3n, 19, 1D, OO, F7
  31.  
  32.      Response from M1:  F0, 42, 3n, 19, 4D, *, F7
  33.       voice bulk data:  (0001) (0000) (007C) (0000) (0064)
  34.                         (0000) (0000) 0A 10 00
  35.  
  36.  
  37. GLOBAL:
  38.  
  39.      GLOBAL dump request:  F0, 42, 3n, 19, 0E, 00, F7
  40.  
  41.      Response from M1:  F0, 42, 3n, 19, 51, *, F7
  42.  
  43.  
  44. SEQUENCE:
  45.  
  46.      SEQ dump request:  F0, 42, 3n, 19, 18, 00, F7
  47.  
  48.      Response from M1:  F0, 42, 3n, 19, 48, *, F7
  49.  
  50.  
  51. SOUNDS:
  52.  
  53.      SOUNDS dump request:  F0, 42, 3n, 19, 1C, 00, F7
  54.  
  55.      Response from M1:  F0, 42, 3n, 19, 4C, *, F7
  56.       Voice bulk data:  (0001) (0000) (008F) (0064)
  57.                         (0000) (0000) 0A 10 00
  58.  
  59.  
  60. Have fun..
  61.